1 Basic DESeq2 results exploration

Project: DESeq2 HTML report.

2 Introduction

This report is meant to help explore DESeq2 (Love, Huber, and Anders, 2014) results and was generated using the regionReport (Collado-Torres, Jaffe, and Leek, 2016) package. While the report is rich, it is meant to just start the exploration of the results and exemplify some of the code used to do so. If you need a more in-depth analysis for your specific data set you might want to use the customCode argument. This report is based on the vignette of the DESeq2 (Love, Huber, and Anders, 2014) package which you can find here.

2.1 Code setup

This section contains the code for setting up the rest of the report.

## knitrBoostrap and device chunk options
load_install('knitr')
opts_chunk$set(bootstrap.show.code = FALSE, dev = device)
if(!outputIsHTML) opts_chunk$set(bootstrap.show.code = FALSE, dev = device, echo = FALSE)
#### Libraries needed

## Bioconductor
load_install('DESeq2')
if(isEdgeR) load_install('edgeR')

## CRAN
load_install('ggplot2')
if(!is.null(theme)) theme_set(theme)
load_install('knitr')
if(is.null(colors)) {
    load_install('RColorBrewer')
}
load_install('pheatmap')
load_install('DT')
load_install('devtools')

## Working behind the scenes
# load_install('knitcitations')
# load_install('rmarkdown')
## Optionally
# load_install('knitrBootstrap')

#### Code setup

## For ggplot
res.df <- as.data.frame(res)

## Sort results by adjusted p-values
ord <- order(res.df$padj, decreasing = FALSE)
res.df <- res.df[ord, ]
features <- rownames(res.df)
res.df <- cbind(data.frame(Feature = features), res.df)
rownames(res.df) <- NULL

3 PCA

## Transform count data
rld <- tryCatch(rlog(dds), error = function(e) { rlog(dds, fitType = 'mean') })
## rlog() may take a few minutes with 30 or more samples,
## vst() is a much faster transformation
## Perform PCA analysis and make plot
plotPCA(rld, intgroup = intgroup)

## Get percent of variance explained
data_pca <- plotPCA(rld, intgroup = intgroup, returnData = TRUE)
percentVar <- round(100 * attr(data_pca, "percentVar"))

The above plot shows the first two principal components that explain the variability in the data using the regularized log count data. If you are unfamiliar with principal component analysis, you might want to check the Wikipedia entry or this interactive explanation. In this case, the first and second principal component explain 51 and 17 percent of the variance respectively.

4 Sample-to-sample distances

## Obtain the sample euclidean distances
sampleDists <- dist(t(assay(rld)))
sampleDistMatrix <- as.matrix(sampleDists)
## Add names based on intgroup
rownames(sampleDistMatrix) <- apply(as.data.frame(colData(rld)[, intgroup]), 1,
    paste, collapse = ' : ')
colnames(sampleDistMatrix) <- NULL

## Define colors to use for the heatmap if none were supplied
if(is.null(colors)) {
    colors <- colorRampPalette( rev(brewer.pal(9, "Blues")) )(255)
}

## Make the heatmap
pheatmap(sampleDistMatrix, clustering_distance_rows = sampleDists,
    clustering_distance_cols = sampleDists, color = colors)

This plot shows how samples are clustered based on their euclidean distance using the regularized log transformed count data. This figure gives an overview of how the samples are hierarchically clustered. It is a complementary figure to the PCA plot.

5 MA plots

This section contains three MA plots (see Wikipedia) that compare the mean of the normalized counts against the log fold change. They show one point per feature. The points are shown in red if the feature has an adjusted p-value less than alpha, that is, the statistically significant features are shown in red.

## MA plot with alpha used in DESeq2::results()
plotMA(res, alpha = metadata(res)$alpha, main = paste('MA plot with alpha =',
    metadata(res)$alpha))

This first plot shows uses alpha = 0.1, which is the alpha value used to determine which resulting features were significant when running the function DESeq2::results().

## MA plot with alpha = 1/2 of the alpha used in DESeq2::results()
plotMA(res, alpha = metadata(res)$alpha / 2,
    main = paste('MA plot with alpha =', metadata(res)$alpha / 2))

This second MA plot uses alpha = 0.05 and can be used agains the first MA plot to identify which features have adjusted p-values between 0.05 and 0.1.

## MA plot with alpha corresponding to the one that gives the nBest features
nBest.actual <- min(nBest, nrow(head(res.df, n = nBest)))
nBest.alpha <- head(res.df, n = nBest)$padj[nBest.actual]
plotMA(res, alpha = nBest.alpha * 1.00000000000001,
    main = paste('MA plot for top', nBest.actual, 'features'))

The third and final MA plot uses an alpha such that the top 500 features are shown in the plot. These are the features that whose details are included in the top features interactive table.

6 P-values distribution

## P-value histogram plot
ggplot(res.df[!is.na(res.df$pvalue), ], aes(x = pvalue)) +
    geom_histogram(alpha=.5, position='identity', bins = 50) +
    labs(title='Histogram of unadjusted p-values') +
    xlab('Unadjusted p-values') +
    xlim(c(0, 1.0005))

This plot shows a histogram of the unadjusted p-values. It might be skewed right or left, or flat as shown in the Wikipedia examples. The shape depends on the percent of features that are differentially expressed. For further information on how to interpret a histogram of p-values check David Robinson’s post on this topic.

## P-value distribution summary
summary(res.df$pvalue)
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
## 0.00000 0.08193 0.33266 0.38168 0.64716 0.99882

This is the numerical summary of the distribution of the p-values.

## Split features by different p-value cutoffs
pval_table <- lapply(c(1e-04, 0.001, 0.01, 0.025, 0.05, 0.1, 0.2, 0.3, 0.4, 0.5,
    0.6, 0.7, 0.8, 0.9, 1), function(x) {
    data.frame('Cut' = x, 'Count' = sum(res.df$pvalue <= x, na.rm = TRUE))
})
pval_table <- do.call(rbind, pval_table)
if(outputIsHTML) {
    kable(pval_table, format = 'markdown', align = c('c', 'c'))
} else {
    kable(pval_table)
}
Cut Count
0.0001 115
0.0010 266
0.0100 652
0.0250 959
0.0500 1306
0.1000 1804
0.2000 2517
0.3000 3104
0.4000 3628
0.5000 4125
0.6000 4659
0.7000 5150
0.8000 5597
0.9000 6056
1.0000 6511

This table shows the number of features with p-values less or equal than some commonly used cutoff values.

7 Adjusted p-values distribution

## Adjusted p-values histogram plot
ggplot(res.df[!is.na(res.df$padj), ], aes(x = padj)) +
    geom_histogram(alpha=.5, position='identity', bins = 50) +
    labs(title=paste('Histogram of', elementMetadata(res)$description[grep('adjusted', elementMetadata(res)$description)])) +
    xlab('Adjusted p-values') +
    xlim(c(0, 1.0005))

This plot shows a histogram of the BH adjusted p-values. It might be skewed right or left, or flat as shown in the Wikipedia examples.

## Adjusted p-values distribution summary
summary(res.df$padj)
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max.    NA's 
## 0.00005 0.31481 0.64297 0.57583 0.85202 0.99882     127

This is the numerical summary of the distribution of the BH adjusted p-values.

## Split features by different adjusted p-value cutoffs
padj_table <- lapply(c(1e-04, 0.001, 0.01, 0.025, 0.05, 0.1, 0.2, 0.3, 0.4, 0.5,
    0.6, 0.7, 0.8, 0.9, 1), function(x) {
    data.frame('Cut' = x, 'Count' = sum(res.df$padj <= x, na.rm = TRUE))
})
padj_table <- do.call(rbind, padj_table)
if(outputIsHTML) {
    kable(padj_table, format = 'markdown', align = c('c', 'c'))
} else {
    kable(padj_table)
}
Cut Count
0.0001 5
0.0010 34
0.0100 166
0.0250 270
0.0500 416
0.1000 668
0.2000 1124
0.3000 1534
0.4000 2025
0.5000 2467
0.6000 3005
0.7000 3560
0.8000 4298
0.9000 5246
1.0000 6384

This table shows the number of features with BH adjusted p-values less or equal than some commonly used cutoff values.

8 Top features

This interactive table shows the top 500 features ordered by their BH adjusted p-values. Use the search function to find your feature of interest or sort by one of the columns.

## Add search url if appropriate
if(!is.null(searchURL) & outputIsHTML) {
    res.df$Feature <- paste0('<a href="', searchURL, res.df$Feature, '">',
        res.df$Feature, '</a>')
}

for(i in which(colnames(res.df) %in% c('pvalue', 'padj'))) res.df[, i] <- format(res.df[, i], scientific = TRUE)

if(outputIsHTML) {
    datatable(head(res.df, n = nBest), options = list(pagingType='full_numbers', pageLength=10, scrollX='100%'), escape = FALSE, rownames = FALSE) %>% formatRound(which(!colnames(res.df) %in% c('pvalue', 'padj', 'Feature')), digits)
} else {
    res.df_top <- head(res.df, n = 20)
    for(i in which(!colnames(res.df) %in% c('pvalue', 'padj', 'Feature'))) res.df_top[, i] <- round(res.df_top[, i], digits)
    kable(res.df_top)
}

9 Count plots top features

This section contains plots showing the normalized counts per sample for each group of interest. Only the best 20 features are shown, ranked by their BH adjusted p-values. The Y axis is on the log10 scale and the feature name is shown in the title of each plot.

plotCounts_gg <- function(i, dds, intgroup) {
    group <- if (length(intgroup) == 1) {
        colData(dds)[[intgroup]]
    } else if (length(intgroup) == 2) {
        lvls <- as.vector(t(outer(levels(colData(dds)[[intgroup[1]]]), 
            levels(colData(dds)[[intgroup[2]]]), function(x, 
                y) paste(x, y, sep = " : "))))
        droplevels(factor(apply(as.data.frame(colData(dds)[, 
            intgroup, drop = FALSE]), 1, paste, collapse = " : "), 
            levels = lvls))
    } else {
        factor(apply(as.data.frame(colData(dds)[, intgroup, drop = FALSE]), 
            1, paste, collapse = " : "))
    }
    data <- plotCounts(dds, gene=i, intgroup=intgroup, returnData = TRUE)
    ## Change in version 1.15.3
    ## It might not be necessary to have any of this if else, but I'm not
    ## sure that plotCounts(returnData) will always return the 'group' variable.
    if('group' %in% colnames(data)) {
        data$group <- group
    } else {
        data <- cbind(data, data.frame('group' = group))
    }

    ggplot(data, aes(x = group, y = count)) + geom_point() + ylab('Normalized count') + ggtitle(i) + coord_trans(y = "log10") + theme(axis.text.x = element_text(angle = 90, hjust = 1))
}
for(i in head(features, nBestFeatures)) {
    print(plotCounts_gg(i, dds = dds, intgroup = intgroup))
}

10 Reproducibility

The input for this report was generated with DESeq2 (Love, Huber, and Anders, 2014) using version 1.20.0 and the resulting features were called significantly differentially expressed if their BH adjusted p-values were less than alpha = 0.1. This report was generated in path /Users/hollymcqueary/Documents/GitHub/Dosage_Compensation using the following call to DESeq2Report():

## DESeq2Report(dds = ddsNoAneuInNorm, project = "DESeq2 HTML report", 
##     intgroup = c("condition"), outdir = "DESeq2-example", output = "index", 
##     theme = theme_bw())

Date the report was generated.

## [1] "2018-09-29 21:43:00 EDT"

Wallclock time spent generating the report.

## Time difference of 1.096 mins

R session information.

## Session info ----------------------------------------------------------------------------------------------------------
## Packages --------------------------------------------------------------------------------------------------------------
##  package                               * version   date       source        
##  acepack                                 1.4.1     2016-10-29 CRAN (R 3.5.0)
##  annotate                                1.58.0    2018-05-01 Bioconductor  
##  AnnotationDbi                         * 1.42.1    2018-05-08 Bioconductor  
##  AnnotationFilter                        1.4.0     2018-05-01 Bioconductor  
##  AnnotationForge                         1.22.2    2018-08-03 Bioconductor  
##  apeglm                                * 1.2.1     2018-08-01 Bioconductor  
##  assertthat                              0.2.0     2017-04-11 CRAN (R 3.5.0)
##  backports                               1.1.2     2017-12-13 CRAN (R 3.5.0)
##  base                                  * 3.5.1     2018-07-05 local         
##  base64enc                               0.1-3     2015-07-28 CRAN (R 3.5.0)
##  bbmle                                   1.0.20    2017-10-30 CRAN (R 3.5.0)
##  bibtex                                  0.4.2     2017-06-30 CRAN (R 3.5.0)
##  bindr                                   0.1.1     2018-03-13 CRAN (R 3.5.0)
##  bindrcpp                                0.2.2     2018-03-29 CRAN (R 3.5.0)
##  Biobase                               * 2.40.0    2018-05-01 Bioconductor  
##  BiocGenerics                          * 0.26.0    2018-05-01 Bioconductor  
##  BiocInstaller                           1.30.0    2018-05-01 Bioconductor  
##  BiocParallel                          * 1.14.2    2018-07-08 Bioconductor  
##  BiocStyle                             * 2.8.2     2018-05-30 Bioconductor  
##  biomaRt                                 2.36.1    2018-05-24 Bioconductor  
##  Biostrings                              2.48.0    2018-05-01 Bioconductor  
##  biovizBase                              1.28.2    2018-08-23 Bioconductor  
##  bit                                     1.1-14    2018-05-29 CRAN (R 3.5.0)
##  bit64                                   0.9-7     2017-05-08 CRAN (R 3.5.0)
##  bitops                                  1.0-6     2013-08-17 CRAN (R 3.5.0)
##  blob                                    1.1.1     2018-03-25 CRAN (R 3.5.0)
##  bookdown                                0.7       2018-02-18 CRAN (R 3.5.0)
##  BSgenome                                1.48.0    2018-05-01 Bioconductor  
##  bumphunter                              1.22.0    2018-05-01 Bioconductor  
##  Category                                2.46.0    2018-05-01 Bioconductor  
##  checkmate                               1.8.5     2017-10-24 CRAN (R 3.5.0)
##  cluster                                 2.0.7-1   2018-04-13 CRAN (R 3.5.1)
##  coda                                    0.19-1    2016-12-08 CRAN (R 3.5.0)
##  codetools                               0.2-15    2016-10-05 CRAN (R 3.5.1)
##  colorspace                              1.3-2     2016-12-14 CRAN (R 3.5.0)
##  compiler                                3.5.1     2018-07-05 local         
##  crayon                                  1.3.4     2017-09-16 CRAN (R 3.5.0)
##  crosstalk                               1.0.0     2016-12-21 CRAN (R 3.5.0)
##  curl                                    3.2       2018-03-28 CRAN (R 3.5.0)
##  data.table                              1.11.4    2018-05-27 CRAN (R 3.5.0)
##  datasets                              * 3.5.1     2018-07-05 local         
##  DBI                                     1.0.0     2018-05-02 CRAN (R 3.5.0)
##  DEFormats                               1.8.0     2018-05-01 Bioconductor  
##  DelayedArray                          * 0.6.6     2018-09-11 Bioconductor  
##  derfinder                               1.14.0    2018-05-01 Bioconductor  
##  derfinderHelper                         1.14.0    2018-05-01 Bioconductor  
##  DESeq2                                * 1.20.0    2018-05-01 Bioconductor  
##  devtools                              * 1.13.6    2018-06-27 CRAN (R 3.5.0)
##  dichromat                               2.0-0     2013-01-24 CRAN (R 3.5.0)
##  digest                                  0.6.17    2018-09-12 CRAN (R 3.5.1)
##  doRNG                                   1.7.1     2018-06-22 CRAN (R 3.5.0)
##  dplyr                                   0.7.6     2018-06-29 CRAN (R 3.5.1)
##  DT                                    * 0.4       2018-01-30 CRAN (R 3.5.0)
##  edgeR                                   3.22.4    2018-09-23 Bioconductor  
##  emdbook                                 1.3.10    2018-05-19 CRAN (R 3.5.0)
##  ensembldb                               2.4.1     2018-05-07 Bioconductor  
##  evaluate                                0.11      2018-07-17 CRAN (R 3.5.1)
##  foreach                                 1.4.4     2017-12-12 CRAN (R 3.5.0)
##  foreign                                 0.8-71    2018-07-20 CRAN (R 3.5.0)
##  Formula                                 1.2-3     2018-05-03 CRAN (R 3.5.0)
##  genefilter                              1.62.0    2018-05-01 Bioconductor  
##  geneplotter                             1.58.0    2018-05-01 Bioconductor  
##  GenomeInfoDb                          * 1.16.0    2018-05-01 Bioconductor  
##  GenomeInfoDbData                        1.1.0     2018-07-06 Bioconductor  
##  GenomicAlignments                       1.16.0    2018-05-01 Bioconductor  
##  GenomicFeatures                       * 1.32.2    2018-08-13 Bioconductor  
##  GenomicFiles                            1.16.0    2018-05-01 Bioconductor  
##  GenomicRanges                         * 1.32.7    2018-09-20 Bioconductor  
##  GGally                                  1.4.0     2018-05-17 CRAN (R 3.5.0)
##  ggbio                                   1.28.5    2018-08-23 Bioconductor  
##  ggplot2                               * 3.0.0     2018-07-03 CRAN (R 3.5.0)
##  glue                                    1.3.0     2018-07-17 CRAN (R 3.5.1)
##  GO.db                                   3.6.0     2018-07-06 Bioconductor  
##  GOstats                                 2.46.0    2018-05-01 Bioconductor  
##  graph                                   1.58.0    2018-05-01 Bioconductor  
##  graphics                              * 3.5.1     2018-07-05 local         
##  grDevices                             * 3.5.1     2018-07-05 local         
##  grid                                    3.5.1     2018-07-05 local         
##  gridExtra                               2.3       2017-09-09 CRAN (R 3.5.0)
##  GSEABase                                1.42.0    2018-05-01 Bioconductor  
##  gtable                                  0.2.0     2016-02-26 CRAN (R 3.5.0)
##  highr                                   0.7       2018-06-09 CRAN (R 3.5.0)
##  Hmisc                                   4.1-1     2018-01-03 CRAN (R 3.5.0)
##  hms                                     0.4.2     2018-03-10 CRAN (R 3.5.0)
##  htmlTable                               1.12      2018-05-26 CRAN (R 3.5.0)
##  htmltools                               0.3.6     2017-04-28 CRAN (R 3.5.0)
##  htmlwidgets                             1.2       2018-04-19 CRAN (R 3.5.0)
##  httpuv                                  1.4.5     2018-07-19 CRAN (R 3.5.0)
##  httr                                    1.3.1     2017-08-20 CRAN (R 3.5.0)
##  hwriter                                 1.3.2     2014-09-10 CRAN (R 3.5.0)
##  IRanges                               * 2.14.12   2018-09-20 Bioconductor  
##  iterators                               1.0.10    2018-07-13 CRAN (R 3.5.0)
##  jsonlite                                1.5       2017-06-01 CRAN (R 3.5.0)
##  knitcitations                           1.0.8     2017-07-04 CRAN (R 3.5.0)
##  knitr                                 * 1.20      2018-02-20 CRAN (R 3.5.0)
##  knitrBootstrap                          1.0.2     2018-05-24 CRAN (R 3.5.0)
##  labeling                                0.3       2014-08-23 CRAN (R 3.5.0)
##  later                                   0.7.5     2018-09-18 CRAN (R 3.5.1)
##  lattice                                 0.20-35   2017-03-25 CRAN (R 3.5.1)
##  latticeExtra                            0.6-28    2016-02-09 CRAN (R 3.5.0)
##  lazyeval                                0.2.1     2017-10-29 CRAN (R 3.5.0)
##  limma                                   3.36.5    2018-09-20 Bioconductor  
##  locfit                                  1.5-9.1   2013-04-20 CRAN (R 3.5.0)
##  lubridate                               1.7.4     2018-04-11 CRAN (R 3.5.0)
##  magrittr                                1.5       2014-11-22 CRAN (R 3.5.0)
##  markdown                                0.8       2017-04-20 CRAN (R 3.5.0)
##  MASS                                    7.3-50    2018-04-30 CRAN (R 3.5.1)
##  Matrix                                  1.2-14    2018-04-13 CRAN (R 3.5.1)
##  matrixStats                           * 0.54.0    2018-07-23 CRAN (R 3.5.0)
##  memoise                                 1.1.0     2017-04-21 CRAN (R 3.5.0)
##  methods                               * 3.5.1     2018-07-05 local         
##  mime                                    0.5       2016-07-07 CRAN (R 3.5.0)
##  munsell                                 0.5.0     2018-06-12 CRAN (R 3.5.0)
##  nnet                                    7.3-12    2016-02-02 CRAN (R 3.5.1)
##  numDeriv                                2016.8-1  2016-08-27 CRAN (R 3.5.0)
##  org.Hs.eg.db                          * 3.6.0     2018-07-18 Bioconductor  
##  OrganismDbi                             1.22.0    2018-05-01 Bioconductor  
##  parallel                              * 3.5.1     2018-07-05 local         
##  PFAM.db                                 3.6.0     2018-07-06 Bioconductor  
##  pheatmap                              * 1.0.10    2018-05-19 CRAN (R 3.5.0)
##  pillar                                  1.3.0     2018-07-14 CRAN (R 3.5.0)
##  pkgconfig                               2.0.2     2018-08-16 CRAN (R 3.5.0)
##  pkgmaker                                0.27      2018-05-25 CRAN (R 3.5.0)
##  plyr                                    1.8.4     2016-06-08 CRAN (R 3.5.0)
##  prettyunits                             1.0.2     2015-07-13 CRAN (R 3.5.0)
##  progress                                1.2.0     2018-06-14 CRAN (R 3.5.0)
##  promises                                1.0.1     2018-04-13 CRAN (R 3.5.0)
##  ProtGenerics                            1.12.0    2018-05-01 Bioconductor  
##  purrr                                   0.2.5     2018-05-29 CRAN (R 3.5.0)
##  qvalue                                  2.12.0    2018-05-01 Bioconductor  
##  R.methodsS3                             1.7.1     2016-02-16 CRAN (R 3.5.0)
##  R.oo                                    1.22.0    2018-04-22 CRAN (R 3.5.0)
##  R.utils                                 2.7.0     2018-08-27 CRAN (R 3.5.0)
##  R6                                      2.2.2     2017-06-17 CRAN (R 3.5.0)
##  RBGL                                    1.56.0    2018-05-01 Bioconductor  
##  RColorBrewer                          * 1.1-2     2014-12-07 CRAN (R 3.5.0)
##  Rcpp                                    0.12.18   2018-07-23 CRAN (R 3.5.0)
##  RCurl                                   1.95-4.11 2018-07-15 CRAN (R 3.5.0)
##  RefManageR                              1.2.0     2018-04-25 CRAN (R 3.5.0)
##  regionReport                          * 1.14.3    2018-07-24 Bioconductor  
##  registry                                0.5       2017-12-03 CRAN (R 3.5.0)
##  ReportingTools                        * 2.20.0    2018-05-01 Bioconductor  
##  reshape                                 0.8.7     2017-08-06 CRAN (R 3.5.0)
##  reshape2                                1.4.3     2017-12-11 CRAN (R 3.5.0)
##  Rgraphviz                               2.24.0    2018-05-01 Bioconductor  
##  rlang                                   0.2.2     2018-08-16 CRAN (R 3.5.0)
##  rmarkdown                               1.10      2018-06-11 CRAN (R 3.5.0)
##  rngtools                                1.3.1     2018-05-15 CRAN (R 3.5.0)
##  rpart                                   4.1-13    2018-02-23 CRAN (R 3.5.1)
##  rprojroot                               1.3-2     2018-01-03 CRAN (R 3.5.0)
##  Rsamtools                               1.32.3    2018-08-22 Bioconductor  
##  RSQLite                                 2.1.1     2018-05-06 CRAN (R 3.5.0)
##  rstudioapi                              0.7       2017-09-07 CRAN (R 3.5.0)
##  rtracklayer                             1.40.6    2018-09-04 Bioconductor  
##  S4Vectors                             * 0.18.3    2018-06-08 Bioconductor  
##  scales                                  1.0.0     2018-08-09 CRAN (R 3.5.0)
##  shiny                                   1.1.0     2018-05-17 CRAN (R 3.5.0)
##  splines                                 3.5.1     2018-07-05 local         
##  stats                                 * 3.5.1     2018-07-05 local         
##  stats4                                * 3.5.1     2018-07-05 local         
##  stringi                                 1.2.4     2018-07-20 CRAN (R 3.5.0)
##  stringr                                 1.3.1     2018-05-10 CRAN (R 3.5.0)
##  SummarizedExperiment                  * 1.10.1    2018-05-11 Bioconductor  
##  survival                                2.42-6    2018-07-13 CRAN (R 3.5.0)
##  tibble                                  1.4.2     2018-01-22 CRAN (R 3.5.0)
##  tidyselect                              0.2.4     2018-02-26 CRAN (R 3.5.0)
##  tools                                   3.5.1     2018-07-05 local         
##  TxDb.Scerevisiae.UCSC.sacCer2.sgdGene * 3.2.2     2018-07-10 Bioconductor  
##  utils                                 * 3.5.1     2018-07-05 local         
##  VariantAnnotation                       1.26.1    2018-07-04 Bioconductor  
##  withr                                   2.1.2     2018-03-15 CRAN (R 3.5.0)
##  xfun                                    0.3       2018-07-06 CRAN (R 3.5.1)
##  XML                                     3.98-1.16 2018-08-19 CRAN (R 3.5.0)
##  xml2                                    1.2.0     2018-01-24 CRAN (R 3.5.0)
##  xtable                                  1.8-3     2018-08-29 CRAN (R 3.5.0)
##  XVector                                 0.20.0    2018-05-01 Bioconductor  
##  yaml                                    2.2.0     2018-07-25 CRAN (R 3.5.0)
##  zlibbioc                                1.26.0    2018-05-01 Bioconductor

Pandoc version used: 1.19.2.1.

11 Bibliography

This report was created with regionReport (Collado-Torres, Jaffe, and Leek, 2016) using rmarkdown (Allaire, Xie, McPherson, Luraschi, et al., 2018) while knitr (Xie, 2014) and DT (Xie, 2018) were running behind the scenes. pheatmap (Kolde, 2018) was used to create the sample distances heatmap. Several plots were made with ggplot2 (Wickham, 2016).

Citations made with knitcitations (Boettiger, 2017). The BibTeX file can be found here.

[1] J. Allaire, Y. Xie, J. McPherson, J. Luraschi, et al. rmarkdown: Dynamic Documents for R. R package version 1.10. 2018. URL: https://CRAN.R-project.org/package=rmarkdown.

[1] C. Boettiger. knitcitations: Citations for ‘Knitr’ Markdown Files. R package version 1.0.8. 2017. URL: https://CRAN.R-project.org/package=knitcitations.

## No encoding supplied: defaulting to UTF-8.

[1] R. Kolde. pheatmap: Pretty Heatmaps. R package version 1.0.10. 2018. URL: https://CRAN.R-project.org/package=pheatmap.

## No encoding supplied: defaulting to UTF-8.

[1] H. Wickham. ggplot2: Elegant Graphics for Data Analysis. Springer-Verlag New York, 2016. ISBN: 978-3-319-24277-4. URL: http://ggplot2.org.

[1] Y. Xie. DT: A Wrapper of the JavaScript Library ‘DataTables’. R package version 0.4. 2018. URL: https://CRAN.R-project.org/package=DT.

[1] Y. Xie. “knitr: A Comprehensive Tool for Reproducible Research in R”. In: Implementing Reproducible Computational Research. Ed. by V. Stodden, F. Leisch and R. D. Peng. ISBN 978-1466561595. Chapman and Hall/CRC, 2014. URL: http://www.crcpress.com/product/isbn/9781466561595.